home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Terra Sound Library
/
Terra Sound Library.iso
/
player_composer
/
eagleplayer
/
ep_to_install
/
installdata
/
arexxexamples.lha
/
EP_RandomPlay-Toggle.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
223b
|
16 lines
/* EaglePlayer - toggles RandomPlay */
address 'rexx_EP'
options results
status G rnd
if result == "no" then do
RandomPlay yes
say "RandomPlay is now on !"
end
else do
RandomPlay no
say "RandomPlay is now off !"
end